home *** CD-ROM | disk | FTP | other *** search
/ Painter Bear's Language Bridge — Italian / Bridge_ponte_itialian.iso / pc / helpers / open.dxr / 00013_generic button script.txt < prev    next >
Encoding:
Text File  |  2001-02-22  |  462 b   |  24 lines

  1. on mouseUp
  2.   clearBtnHilite
  3. end
  4.  
  5. on mouseDown
  6.   global gPopped
  7.   if gPopped <> 1 then
  8.     hiliteBtn the castLibNum of sprite the clickOn
  9.   end if    
  10. end 
  11.  
  12. on mouseEnter
  13.   global gPopped
  14.   if gPopped <> 1 then
  15.     rllovr the CurrentSpriteNum, the castLibNum of sprite the CurrentSpriteNum
  16.   end if  
  17. end 
  18.  
  19. on mouseLeave
  20.   global gPopped
  21.   if gPopped <> 1 then
  22.     undoRllovr the CurrentSpriteNum, the castLibNum of sprite the CurrentSpriteNum
  23.   end if      
  24. end